home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 5 (Internal Edition) / Apple R&P Lib Internal v5.0.iso / 6-Developer Demos / Developer Demos-Ed. / Macintosh School® CD-ROM Demo / Macintosh SchoolÆ CD-ROM Demo / background_69011.txt < prev    next >
Text File  |  1990-08-14  |  50KB  |  2,355 lines

  1. -- background: 69011 from stack: in
  2. -- bmap block id: 71292
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: CSL Attendance Window
  6. ----- HyperTalk script -----
  7. on openBackground
  8.   global dailyAttendance, buttonName
  9.   if (dailyAttendance is empty) or (buttonName is empty) then
  10.     put "true" into dailyAttendance
  11.     put id of background button "Present" into buttonName
  12.   end if
  13.   enableMenuItem 1021,3,true
  14.   enableMenuItem 1027,1,false
  15. end openBackground
  16.  
  17. on doMenu menuItem
  18.   global codeList
  19.   lock screen
  20.   if menuItem contains "About" then
  21.     resetCard
  22.     resetBackground
  23.     restoreMenuBar
  24.     go to card "CSL Attendance" of background "About"
  25.     unlock screen with zoom close
  26.   else if menuItem is "Home" then
  27.     resetCard
  28.     resetBackground
  29.     restoreMenuBar
  30.     go home
  31.   else if menuItem contains "Quit" then
  32.     resetCard
  33.     resetBackground
  34.     restoreMenuBar false
  35.     go to card "Mac School¬Æ Shell"
  36.     unlock screen with zoom close
  37.   else if menuItem is "Report Manager" OR menuItem is "Report Cards" then
  38.     resetCard
  39.     resetBackground
  40.     restoreMenuBar false
  41.     go to background menuItem
  42.     unlock screen with zoom open
  43.   else if menuItem is "Close" then
  44.     resetCard
  45.     resetBackground
  46.     go to background "CSL Attendance"
  47.   else if ((menuItem is "All Students") OR (menuItem is "By Class") OR (menuItem is "By Grade") OR (menuItem is "By Homeroom") OR (menuItem is "By ID's") OR (menuItem is "Single Student")) then
  48.     resetCard
  49.     go to card menuItem of this background
  50.   else if ((menuItem is "Period To Daily Link‚Ķ") OR (menuItem is "Action Comment‚Ķ") OR (menuItem is "Upload Term Attendance‚Ķ") OR (menuItem is "Today's Attendance‚Ķ") OR (menuItem is "Custom Templates‚Ķ")) then
  51.     push card
  52.     go to card menuItem of this background
  53.   else if menuItem is "Exception Report‚Ķ" then
  54.     push card
  55.     go to card "Students" of this background
  56.   else if (menuItem is "Class Directory") OR (menuItem is "Open Directory Window") then
  57.     push card
  58.     go to background "Class Directory"
  59.   else if menuItem is "Calculate Daily From Period‚Ķ" then
  60.     repeat with index = 1 to the number of lines of codeList
  61.       put line index of codeList into codeID
  62.       if showName of background button id codeID then
  63.         get the short name of background button id codeID
  64.         put (trunc((codeID - 34) / 8) + 1) into lineNumber
  65.         if it is "A" then put "Absent Un" into line lineNumber of bg field "Daily Attendance"
  66.       end if
  67.     end repeat
  68.   end if
  69.   unlock screen
  70. end doMenu
  71.  
  72. on groupOne
  73.   global dailyAttendance, buttonName, buttonList, codeList
  74.   if dailyAttendance then
  75.     if short name of target contains "button" then exit groupOne
  76.     if buttonName <> id of target then
  77.       set hilite of background button id buttonName to false
  78.       set hilite of target to true
  79.       put id of target into buttonName
  80.     end if
  81.     lock screen
  82.     repeat with index = 1 to the number of lines of buttonList
  83.       put short name of target into line line index of buttonList of field "Daily Attendance"
  84.     end repeat
  85.     unlock screen
  86.   else
  87.     get id of target
  88.     if it is "11" then put "+" into periodCode
  89.     else if it is "12" then put "A" into periodCode
  90.     else if it is "15" then put "5037" into periodCode
  91.     else if it is "16" then put "E" into periodCode
  92.     else if it is "19" then put "0" into periodCode
  93.     else if it is "20" then put "F" into periodCode
  94.     else if it is "23" then put "L" into periodCode
  95.     else if it is "24" then put "D" into periodCode
  96.     else exit groupOne
  97.     if buttonName <> id of target then
  98.       set hilite of background button id buttonName to false
  99.       set hilite of target to true
  100.       put id of target into buttonName
  101.     end if
  102.     lock screen
  103.     if buttonList is not empty then
  104.       put buttonList & return before codeList
  105.     end if
  106.     if (it is "11") or (it is "12") or (it is "16") or (it is "20") or (it is "23") or (it is "24") then
  107.       repeat with index = 1 to the number of lines of buttonList
  108.         set name of background button id line index of buttonList to periodCode
  109.         set icon of background button id line index of buttonList to 0
  110.         set showName of background button id line index of buttonList to true
  111.       end repeat
  112.     else if (it is "15") or (it is "19") then
  113.       repeat with index = 1 to the number of lines of buttonList
  114.         set icon of background button id line index of buttonList to periodCode
  115.         set showName of background button id line index of buttonList to false
  116.       end repeat
  117.     end if
  118.     unlock screen
  119.   end if
  120. end groupOne
  121.  
  122. on groupTwo shiftKey
  123.   global dailyAttendance, buttonList
  124.   if not dailyAttendance then
  125.     lock screen
  126.     repeat with index = 1 to the number of lines of buttonList
  127.       set hilite of background button id line index of buttonList to false
  128.     end repeat
  129.     changeType
  130.     put id of target into buttonList
  131.     set hilite of target to not hilite of target
  132.     unlock screen
  133.   else
  134.     if (the shiftKey is down) or (shiftKey is down) then
  135.       set hilite of target to not hilite of target
  136.       put id of target & return before buttonList
  137.     else
  138.       lock screen
  139.       repeat with index = 1 to the number of lines of buttonList
  140.         set hilite of background button id line index of buttonList to false
  141.       end repeat
  142.       set hilite of target to true
  143.       put id of target into buttonList
  144.       unlock screen
  145.     end if
  146.   end if
  147. end groupTwo
  148.  
  149. on groupThree shiftKey
  150.   global dailyAttendance, buttonList
  151.   if dailyAttendance then
  152.     lock screen
  153.     repeat with index = 1 to the number of lines of buttonList
  154.       set hilite of background button id line index of buttonList to false
  155.     end repeat
  156.     changeType
  157.     put id of target into buttonList
  158.     set hilite of target to not hilite of target
  159.     unlock screen
  160.   else
  161.     if (the shiftKey is down) or (shiftKey is down) then
  162.       set hilite of target to not hilite of target
  163.       put id of target & return before buttonList
  164.     else
  165.       lock screen
  166.       repeat with index = 1 to the number of lines of buttonList
  167.         set hilite of background button id line index of buttonList to false
  168.       end repeat
  169.       put id of target into buttonList
  170.       set hilite of target to true
  171.       unlock screen
  172.     end if
  173.   end if
  174. end groupThree
  175.  
  176. on resetCard
  177.   global buttonList, codeList
  178.   repeat with index = 1 to 10
  179.     put "Present" into line index of field "Daily Attendance"
  180.   end repeat
  181.   repeat with index = 1 to the number of lines of buttonList
  182.     set hilite of background button id line index of buttonList to false
  183.   end repeat
  184.   put empty into buttonList
  185.   repeat with index = 1 to the number of lines of codeList
  186.     set icon of background button id line index of codeList to 0
  187.     set showName of background button id line index of codeList to false
  188.   end repeat
  189.   put empty into codeList
  190. end resetCard
  191.  
  192. on resetBackground
  193.   global dailyAttendance, buttonName
  194.   if not dailyAttendance then changeType
  195.   if buttonName is not id of background button "Present" then
  196.     set hilite of background button id buttonName to false
  197.     set hilite of background button "Present" to true
  198.     put id of background button "Present" into buttonName
  199.   end if
  200. end resetBackground
  201.  
  202. on changeType
  203.   global dailyAttendance
  204.   lock screen
  205.   if dailyAttendance then
  206.     repeat with index = 11 to 26
  207.       set style of background button index to "transparent"
  208.       set showName of background button index to false
  209.     end repeat
  210.   else
  211.     repeat with index = 11 to 26
  212.       set style of background button index to "opaque"
  213.       set showName of background button index to true
  214.     end repeat
  215.   end if
  216.   put not dailyAttendance into dailyAttendance
  217.   unlock screen
  218. end changeType
  219.  
  220. on moveTextFirst
  221.   --exit moveTextFirst
  222.   put bg field "Students" of first card of this bg into bg field "Students" of this card
  223.   put bg field "ID #'s" of first card of this bg into bg field "ID #'s" of this card
  224.   put bg field "Daily Attendance" of first card of this bg into bg field "Daily Attendance" of this card
  225.   put bg field "Selection" of first card of this bg into bg field "Selection" of this card
  226. end moveTextFirst
  227.  
  228. on moveTextLast
  229.   exit moveTextLast
  230.   put bg field "Students" of this card into bg field "Students" of last card of this bg
  231.   put bg field "ID #'s" of this card into bg field "ID #'s" of last card of this bg
  232.   put bg field "Daily Attendance" of this card into bg field "Daily Attendance" of last card of this bg
  233.   put bg field "Selection" of this card into bg field "Selection" of last card of this bg
  234. end moveTextLast
  235.  
  236.  
  237. -- part 28 (field)
  238. -- low flags: 01
  239. -- high flags: 0001
  240. -- rect: left=8 top=94 right=254 bottom=138
  241. -- title width / last selected line: 0
  242. -- icon id / first selected line: 0 / 0
  243. -- text alignment: 0
  244. -- font id: 3
  245. -- text size: 12
  246. -- style flags: 0
  247. -- line height: 16
  248. -- part name: Students
  249.  
  250.  
  251. -- part 29 (field)
  252. -- low flags: 01
  253. -- high flags: 0001
  254. -- rect: left=141 top=94 right=254 bottom=218
  255. -- title width / last selected line: 0
  256. -- icon id / first selected line: 0 / 0
  257. -- text alignment: 0
  258. -- font id: 3
  259. -- text size: 12
  260. -- style flags: 0
  261. -- line height: 16
  262. -- part name: ID #'s
  263.  
  264.  
  265. -- part 30 (field)
  266. -- low flags: 01
  267. -- high flags: 0001
  268. -- rect: left=221 top=94 right=254 bottom=358
  269. -- title width / last selected line: 0
  270. -- icon id / first selected line: 0 / 0
  271. -- text alignment: 0
  272. -- font id: 3
  273. -- text size: 12
  274. -- style flags: 0
  275. -- line height: 16
  276. -- part name: Daily Attendance
  277.  
  278.  
  279. -- part 1 (button)
  280. -- low flags: 00
  281. -- high flags: 0000
  282. -- rect: left=8 top=94 right=110 bottom=358
  283. -- title width / last selected line: 0
  284. -- icon id / first selected line: 0 / 0
  285. -- text alignment: 0
  286. -- font id: 3
  287. -- text size: 10
  288. -- style flags: 0
  289. -- line height: 13
  290. -- part name: 
  291. ----- HyperTalk script -----
  292. on mouseUp shiftKey
  293.   groupTwo shiftKey
  294. end mouseUp
  295.  
  296.  
  297. -- part 2 (button)
  298. -- low flags: 00
  299. -- high flags: 0000
  300. -- rect: left=8 top=110 right=126 bottom=358
  301. -- title width / last selected line: 0
  302. -- icon id / first selected line: 0 / 0
  303. -- text alignment: 0
  304. -- font id: 3
  305. -- text size: 10
  306. -- style flags: 0
  307. -- line height: 13
  308. -- part name: 
  309. ----- HyperTalk script -----
  310. on mouseUp shiftKey
  311.   groupTwo shiftKey
  312. end mouseUp
  313.  
  314.  
  315. -- part 3 (button)
  316. -- low flags: 00
  317. -- high flags: 0000
  318. -- rect: left=8 top=126 right=142 bottom=358
  319. -- title width / last selected line: 0
  320. -- icon id / first selected line: 0 / 0
  321. -- text alignment: 0
  322. -- font id: 3
  323. -- text size: 10
  324. -- style flags: 0
  325. -- line height: 13
  326. -- part name: 
  327. ----- HyperTalk script -----
  328. on mouseUp shiftKey
  329.   groupTwo shiftKey
  330. end mouseUp
  331.  
  332.  
  333. -- part 4 (button)
  334. -- low flags: 00
  335. -- high flags: 0000
  336. -- rect: left=8 top=142 right=158 bottom=358
  337. -- title width / last selected line: 0
  338. -- icon id / first selected line: 0 / 0
  339. -- text alignment: 0
  340. -- font id: 3
  341. -- text size: 10
  342. -- style flags: 0
  343. -- line height: 13
  344. -- part name: 
  345. ----- HyperTalk script -----
  346. on mouseUp shiftKey
  347.   groupTwo shiftKey
  348. end mouseUp
  349.  
  350.  
  351. -- part 5 (button)
  352. -- low flags: 00
  353. -- high flags: 0000
  354. -- rect: left=8 top=158 right=174 bottom=358
  355. -- title width / last selected line: 0
  356. -- icon id / first selected line: 0 / 0
  357. -- text alignment: 0
  358. -- font id: 3
  359. -- text size: 10
  360. -- style flags: 0
  361. -- line height: 13
  362. -- part name: 
  363. ----- HyperTalk script -----
  364. on mouseUp shiftKey
  365.   groupTwo shiftKey
  366. end mouseUp
  367.  
  368.  
  369. -- part 6 (button)
  370. -- low flags: 00
  371. -- high flags: 0000
  372. -- rect: left=8 top=174 right=190 bottom=358
  373. -- title width / last selected line: 0
  374. -- icon id / first selected line: 0 / 0
  375. -- text alignment: 0
  376. -- font id: 3
  377. -- text size: 10
  378. -- style flags: 0
  379. -- line height: 13
  380. -- part name: 
  381. ----- HyperTalk script -----
  382. on mouseUp shiftKey
  383.   groupTwo shiftKey
  384. end mouseUp
  385.  
  386.  
  387. -- part 7 (button)
  388. -- low flags: 00
  389. -- high flags: 0000
  390. -- rect: left=8 top=190 right=206 bottom=358
  391. -- title width / last selected line: 0
  392. -- icon id / first selected line: 0 / 0
  393. -- text alignment: 0
  394. -- font id: 3
  395. -- text size: 10
  396. -- style flags: 0
  397. -- line height: 13
  398. -- part name: 
  399. ----- HyperTalk script -----
  400. on mouseUp shiftKey
  401.   groupTwo shiftKey
  402. end mouseUp
  403.  
  404.  
  405. -- part 8 (button)
  406. -- low flags: 00
  407. -- high flags: 0000
  408. -- rect: left=8 top=206 right=222 bottom=358
  409. -- title width / last selected line: 0
  410. -- icon id / first selected line: 0 / 0
  411. -- text alignment: 0
  412. -- font id: 3
  413. -- text size: 10
  414. -- style flags: 0
  415. -- line height: 13
  416. -- part name: 
  417. ----- HyperTalk script -----
  418. on mouseUp shiftKey
  419.   groupTwo shiftKey
  420. end mouseUp
  421.  
  422.  
  423. -- part 9 (button)
  424. -- low flags: 00
  425. -- high flags: 0000
  426. -- rect: left=8 top=222 right=238 bottom=358
  427. -- title width / last selected line: 0
  428. -- icon id / first selected line: 0 / 0
  429. -- text alignment: 0
  430. -- font id: 3
  431. -- text size: 10
  432. -- style flags: 0
  433. -- line height: 13
  434. -- part name: 
  435. ----- HyperTalk script -----
  436. on mouseUp shiftKey
  437.   groupTwo shiftKey
  438. end mouseUp
  439.  
  440.  
  441. -- part 10 (button)
  442. -- low flags: 00
  443. -- high flags: 0000
  444. -- rect: left=8 top=238 right=254 bottom=358
  445. -- title width / last selected line: 0
  446. -- icon id / first selected line: 0 / 0
  447. -- text alignment: 0
  448. -- font id: 3
  449. -- text size: 10
  450. -- style flags: 0
  451. -- line height: 13
  452. -- part name: 
  453. ----- HyperTalk script -----
  454. on mouseUp shiftKey
  455.   groupTwo shiftKey
  456. end mouseUp
  457.  
  458.  
  459. -- part 11 (button)
  460. -- low flags: 00
  461. -- high flags: 8001
  462. -- rect: left=8 top=270 right=285 bottom=128
  463. -- title width / last selected line: 0
  464. -- icon id / first selected line: 0 / 0
  465. -- text alignment: 0
  466. -- font id: 3
  467. -- text size: 10
  468. -- style flags: 0
  469. -- line height: 13
  470. -- part name: Suspended
  471. ----- HyperTalk script -----
  472. on mouseUp
  473.   groupOne
  474. end mouseUp
  475.  
  476.  
  477.  
  478. -- part 12 (button)
  479. -- low flags: 00
  480. -- high flags: 8001
  481. -- rect: left=8 top=286 right=301 bottom=128
  482. -- title width / last selected line: 0
  483. -- icon id / first selected line: 0 / 0
  484. -- text alignment: 0
  485. -- font id: 3
  486. -- text size: 10
  487. -- style flags: 0
  488. -- line height: 13
  489. -- part name: Absent Excused
  490. ----- HyperTalk script -----
  491. on mouseUp
  492.   groupOne
  493. end mouseUp
  494.  
  495.  
  496.  
  497. -- part 13 (button)
  498. -- low flags: 00
  499. -- high flags: 8001
  500. -- rect: left=8 top=302 right=317 bottom=128
  501. -- title width / last selected line: 0
  502. -- icon id / first selected line: 0 / 0
  503. -- text alignment: 0
  504. -- font id: 3
  505. -- text size: 10
  506. -- style flags: 256
  507. -- line height: 13
  508. -- part name: Late PM
  509. ----- HyperTalk script -----
  510. on mouseUp
  511.   groupOne
  512. end mouseUp
  513.  
  514.  
  515.  
  516. -- part 14 (button)
  517. -- low flags: 00
  518. -- high flags: 8001
  519. -- rect: left=8 top=318 right=333 bottom=128
  520. -- title width / last selected line: 0
  521. -- icon id / first selected line: 0 / 0
  522. -- text alignment: 0
  523. -- font id: 3
  524. -- text size: 10
  525. -- style flags: 256
  526. -- line height: 13
  527. -- part name: In School Suspen…
  528. ----- HyperTalk script -----
  529. on mouseUp
  530.   groupOne
  531. end mouseUp
  532.  
  533.  
  534.  
  535. -- part 15 (button)
  536. -- low flags: 00
  537. -- high flags: 8001
  538. -- rect: left=129 top=270 right=285 bottom=248
  539. -- title width / last selected line: 0
  540. -- icon id / first selected line: 0 / 0
  541. -- text alignment: 0
  542. -- font id: 3
  543. -- text size: 10
  544. -- style flags: 0
  545. -- line height: 13
  546. -- part name: Not Enrolled
  547. ----- HyperTalk script -----
  548. on mouseUp
  549.   groupOne
  550. end mouseUp
  551.  
  552.  
  553.  
  554. -- part 16 (button)
  555. -- low flags: 00
  556. -- high flags: 8001
  557. -- rect: left=129 top=286 right=301 bottom=248
  558. -- title width / last selected line: 0
  559. -- icon id / first selected line: 0 / 0
  560. -- text alignment: 0
  561. -- font id: 3
  562. -- text size: 10
  563. -- style flags: 0
  564. -- line height: 13
  565. -- part name: Absent / Present
  566. ----- HyperTalk script -----
  567. on mouseUp
  568.   groupOne
  569. end mouseUp
  570.  
  571.  
  572.  
  573. -- part 17 (button)
  574. -- low flags: 00
  575. -- high flags: 8001
  576. -- rect: left=129 top=302 right=317 bottom=248
  577. -- title width / last selected line: 0
  578. -- icon id / first selected line: 0 / 0
  579. -- text alignment: 0
  580. -- font id: 3
  581. -- text size: 10
  582. -- style flags: 256
  583. -- line height: 13
  584. -- part name: Late AM/PM
  585. ----- HyperTalk script -----
  586. on mouseUp
  587.   groupOne
  588. end mouseUp
  589.  
  590.  
  591.  
  592. -- part 18 (button)
  593. -- low flags: 00
  594. -- high flags: 8001
  595. -- rect: left=129 top=318 right=333 bottom=248
  596. -- title width / last selected line: 0
  597. -- icon id / first selected line: 0 / 0
  598. -- text alignment: 0
  599. -- font id: 3
  600. -- text size: 10
  601. -- style flags: 0
  602. -- line height: 13
  603. -- part name: 
  604. ----- HyperTalk script -----
  605. on mouseUp
  606.   groupOne
  607. end mouseUp
  608.  
  609.  
  610.  
  611. -- part 19 (button)
  612. -- low flags: 00
  613. -- high flags: C001
  614. -- rect: left=249 top=270 right=285 bottom=368
  615. -- title width / last selected line: 0
  616. -- icon id / first selected line: 0 / 0
  617. -- text alignment: 0
  618. -- font id: 3
  619. -- text size: 10
  620. -- style flags: 0
  621. -- line height: 13
  622. -- part name: Present
  623. ----- HyperTalk script -----
  624. on mouseUp
  625.   groupOne
  626. end mouseUp
  627.  
  628.  
  629.  
  630. -- part 20 (button)
  631. -- low flags: 00
  632. -- high flags: 8001
  633. -- rect: left=249 top=286 right=301 bottom=368
  634. -- title width / last selected line: 0
  635. -- icon id / first selected line: 0 / 0
  636. -- text alignment: 0
  637. -- font id: 3
  638. -- text size: 10
  639. -- style flags: 0
  640. -- line height: 13
  641. -- part name: Present/Absent
  642. ----- HyperTalk script -----
  643. on mouseUp
  644.   groupOne
  645. end mouseUp
  646.  
  647.  
  648.  
  649. -- part 21 (button)
  650. -- low flags: 00
  651. -- high flags: 8001
  652. -- rect: left=249 top=302 right=317 bottom=368
  653. -- title width / last selected line: 0
  654. -- icon id / first selected line: 0 / 0
  655. -- text alignment: 0
  656. -- font id: 3
  657. -- text size: 10
  658. -- style flags: 0
  659. -- line height: 13
  660. -- part name: Field Trip
  661. ----- HyperTalk script -----
  662. on mouseUp
  663.   groupOne
  664. end mouseUp
  665.  
  666.  
  667.  
  668. -- part 22 (button)
  669. -- low flags: 00
  670. -- high flags: 8001
  671. -- rect: left=249 top=318 right=333 bottom=368
  672. -- title width / last selected line: 0
  673. -- icon id / first selected line: 0 / 0
  674. -- text alignment: 0
  675. -- font id: 3
  676. -- text size: 10
  677. -- style flags: 0
  678. -- line height: 13
  679. -- part name: 
  680. ----- HyperTalk script -----
  681. on mouseUp
  682.   groupOne
  683. end mouseUp
  684.  
  685.  
  686.  
  687. -- part 23 (button)
  688. -- low flags: 00
  689. -- high flags: 8001
  690. -- rect: left=369 top=270 right=285 bottom=488
  691. -- title width / last selected line: 0
  692. -- icon id / first selected line: 0 / 0
  693. -- text alignment: 0
  694. -- font id: 3
  695. -- text size: 10
  696. -- style flags: 256
  697. -- line height: 13
  698. -- part name: Absent Unexcused
  699. ----- HyperTalk script -----
  700. on mouseUp
  701.   groupOne
  702. end mouseUp
  703.  
  704.  
  705.  
  706. -- part 24 (button)
  707. -- low flags: 00
  708. -- high flags: 8001
  709. -- rect: left=369 top=286 right=301 bottom=488
  710. -- title width / last selected line: 0
  711. -- icon id / first selected line: 0 / 0
  712. -- text alignment: 0
  713. -- font id: 3
  714. -- text size: 10
  715. -- style flags: 256
  716. -- line height: 13
  717. -- part name: Late AM
  718. ----- HyperTalk script -----
  719. on mouseUp
  720.   groupOne
  721. end mouseUp
  722.  
  723.  
  724.  
  725. -- part 25 (button)
  726. -- low flags: 00
  727. -- high flags: 8001
  728. -- rect: left=369 top=302 right=317 bottom=488
  729. -- title width / last selected line: 0
  730. -- icon id / first selected line: 0 / 0
  731. -- text alignment: 0
  732. -- font id: 3
  733. -- text size: 10
  734. -- style flags: 0
  735. -- line height: 13
  736. -- part name: Doctors Excuse
  737. ----- HyperTalk script -----
  738. on mouseUp
  739.   groupOne
  740. end mouseUp
  741.  
  742.  
  743.  
  744. -- part 26 (button)
  745. -- low flags: 00
  746. -- high flags: 8001
  747. -- rect: left=369 top=318 right=333 bottom=488
  748. -- title width / last selected line: 0
  749. -- icon id / first selected line: 0 / 0
  750. -- text alignment: 0
  751. -- font id: 3
  752. -- text size: 10
  753. -- style flags: 0
  754. -- line height: 13
  755. -- part name: 
  756. ----- HyperTalk script -----
  757. on mouseUp
  758.   groupOne
  759. end mouseUp
  760.  
  761.  
  762.  
  763. -- part 27 (button)
  764. -- low flags: 00
  765. -- high flags: 0000
  766. -- rect: left=14 top=28 right=43 bottom=29
  767. -- title width / last selected line: 0
  768. -- icon id / first selected line: 5068 / 5068
  769. -- text alignment: 1
  770. -- font id: 0
  771. -- text size: 12
  772. -- style flags: 0
  773. -- line height: 16
  774. -- part name: 
  775. ----- HyperTalk script -----
  776. on mouseDown
  777.   set icon of me to "Close Box Hi"
  778. end mouseDown
  779.  
  780. on mouseLeave
  781.   set icon of me to "Close Box"
  782. end mouseLeave
  783.  
  784. on mouseUp
  785.   set icon of me to "Close Box"
  786.   lock screen
  787.   resetCard
  788.   resetBackground
  789.   go to background "CSL Attendance"
  790.   unlock screen
  791. end mouseUp
  792.  
  793.  
  794.  
  795. -- part 31 (field)
  796. -- low flags: 01
  797. -- high flags: 0000
  798. -- rect: left=114 top=44 right=62 bottom=358
  799. -- title width / last selected line: 0
  800. -- icon id / first selected line: 0 / 0
  801. -- text alignment: 0
  802. -- font id: 0
  803. -- text size: 12
  804. -- style flags: 0
  805. -- line height: 16
  806. -- part name: Date
  807.  
  808.  
  809. -- part 32 (field)
  810. -- low flags: 01
  811. -- high flags: 0000
  812. -- rect: left=429 top=44 right=61 bottom=503
  813. -- title width / last selected line: 0
  814. -- icon id / first selected line: 0 / 0
  815. -- text alignment: 0
  816. -- font id: 0
  817. -- text size: 12
  818. -- style flags: 0
  819. -- line height: 16
  820. -- part name: Number of Students
  821.  
  822.  
  823. -- part 33 (field)
  824. -- low flags: 01
  825. -- high flags: 0000
  826. -- rect: left=8 top=60 right=77 bottom=358
  827. -- title width / last selected line: 0
  828. -- icon id / first selected line: 0 / 0
  829. -- text alignment: 0
  830. -- font id: 3
  831. -- text size: 12
  832. -- style flags: 0
  833. -- line height: 16
  834. -- part name: Selection
  835.  
  836.  
  837. -- part 34 (button)
  838. -- low flags: 00
  839. -- high flags: 0000
  840. -- rect: left=361 top=94 right=109 bottom=376
  841. -- title width / last selected line: 0
  842. -- icon id / first selected line: 0 / 0
  843. -- text alignment: 1
  844. -- font id: 3
  845. -- text size: 12
  846. -- style flags: 0
  847. -- line height: 16
  848. -- part name: +
  849. ----- HyperTalk script -----
  850. on mouseUp shiftKey
  851.   groupThree shiftKey
  852. end mouseUp
  853.  
  854.  
  855.  
  856. -- part 35 (button)
  857. -- low flags: 00
  858. -- high flags: 0000
  859. -- rect: left=377 top=94 right=109 bottom=392
  860. -- title width / last selected line: 0
  861. -- icon id / first selected line: 0 / 0
  862. -- text alignment: 1
  863. -- font id: 3
  864. -- text size: 12
  865. -- style flags: 0
  866. -- line height: 16
  867. -- part name: 
  868. ----- HyperTalk script -----
  869. on mouseUp shiftKey
  870.   groupThree shiftKey
  871. end mouseUp
  872.  
  873.  
  874.  
  875. -- part 36 (button)
  876. -- low flags: 00
  877. -- high flags: 0000
  878. -- rect: left=393 top=94 right=109 bottom=408
  879. -- title width / last selected line: 0
  880. -- icon id / first selected line: 0 / 0
  881. -- text alignment: 1
  882. -- font id: 3
  883. -- text size: 12
  884. -- style flags: 0
  885. -- line height: 16
  886. -- part name: 
  887. ----- HyperTalk script -----
  888. on mouseUp shiftKey
  889.   groupThree shiftKey
  890. end mouseUp
  891.  
  892.  
  893.  
  894. -- part 37 (button)
  895. -- low flags: 00
  896. -- high flags: 0000
  897. -- rect: left=409 top=94 right=109 bottom=424
  898. -- title width / last selected line: 0
  899. -- icon id / first selected line: 0 / 0
  900. -- text alignment: 1
  901. -- font id: 3
  902. -- text size: 12
  903. -- style flags: 0
  904. -- line height: 16
  905. -- part name: A
  906. ----- HyperTalk script -----
  907. on mouseUp shiftKey
  908.   groupThree shiftKey
  909. end mouseUp
  910.  
  911.  
  912.  
  913. -- part 38 (button)
  914. -- low flags: 00
  915. -- high flags: 0000
  916. -- rect: left=425 top=94 right=109 bottom=440
  917. -- title width / last selected line: 0
  918. -- icon id / first selected line: 0 / 0
  919. -- text alignment: 1
  920. -- font id: 3
  921. -- text size: 12
  922. -- style flags: 0
  923. -- line height: 16
  924. -- part name: X
  925. ----- HyperTalk script -----
  926. on mouseUp shiftKey
  927.   groupThree shiftKey
  928. end mouseUp
  929.  
  930.  
  931.  
  932. -- part 39 (button)
  933. -- low flags: 00
  934. -- high flags: 0000
  935. -- rect: left=441 top=94 right=109 bottom=456
  936. -- title width / last selected line: 0
  937. -- icon id / first selected line: 0 / 0
  938. -- text alignment: 1
  939. -- font id: 3
  940. -- text size: 12
  941. -- style flags: 0
  942. -- line height: 16
  943. -- part name: F
  944. ----- HyperTalk script -----
  945. on mouseUp shiftKey
  946.   groupThree shiftKey
  947. end mouseUp
  948.  
  949.  
  950.  
  951. -- part 40 (button)
  952. -- low flags: 00
  953. -- high flags: 0000
  954. -- rect: left=457 top=94 right=109 bottom=472
  955. -- title width / last selected line: 0
  956. -- icon id / first selected line: 0 / 0
  957. -- text alignment: 1
  958. -- font id: 3
  959. -- text size: 12
  960. -- style flags: 0
  961. -- line height: 16
  962. -- part name: 
  963. ----- HyperTalk script -----
  964. on mouseUp shiftKey
  965.   groupThree shiftKey
  966. end mouseUp
  967.  
  968.  
  969.  
  970. -- part 41 (button)
  971. -- low flags: 00
  972. -- high flags: 0000
  973. -- rect: left=473 top=94 right=109 bottom=488
  974. -- title width / last selected line: 0
  975. -- icon id / first selected line: 0 / 0
  976. -- text alignment: 1
  977. -- font id: 3
  978. -- text size: 12
  979. -- style flags: 0
  980. -- line height: 16
  981. -- part name: 
  982. ----- HyperTalk script -----
  983. on mouseUp shiftKey
  984.   groupThree shiftKey
  985. end mouseUp
  986.  
  987.  
  988.  
  989. -- part 42 (button)
  990. -- low flags: 00
  991. -- high flags: 0000
  992. -- rect: left=361 top=110 right=125 bottom=376
  993. -- title width / last selected line: 0
  994. -- icon id / first selected line: 0 / 0
  995. -- text alignment: 1
  996. -- font id: 3
  997. -- text size: 12
  998. -- style flags: 0
  999. -- line height: 16
  1000. -- part name: 
  1001. ----- HyperTalk script -----
  1002. on mouseUp shiftKey
  1003.   groupThree shiftKey
  1004. end mouseUp
  1005.  
  1006.  
  1007.  
  1008. -- part 43 (button)
  1009. -- low flags: 00
  1010. -- high flags: 0000
  1011. -- rect: left=377 top=110 right=125 bottom=392
  1012. -- title width / last selected line: 0
  1013. -- icon id / first selected line: 0 / 0
  1014. -- text alignment: 1
  1015. -- font id: 3
  1016. -- text size: 12
  1017. -- style flags: 0
  1018. -- line height: 16
  1019. -- part name: 
  1020. ----- HyperTalk script -----
  1021. on mouseUp shiftKey
  1022.   groupThree shiftKey
  1023. end mouseUp
  1024.  
  1025.  
  1026.  
  1027. -- part 44 (button)
  1028. -- low flags: 00
  1029. -- high flags: 0000
  1030. -- rect: left=393 top=110 right=125 bottom=408
  1031. -- title width / last selected line: 0
  1032. -- icon id / first selected line: 0 / 0
  1033. -- text alignment: 1
  1034. -- font id: 3
  1035. -- text size: 12
  1036. -- style flags: 0
  1037. -- line height: 16
  1038. -- part name: E
  1039. ----- HyperTalk script -----
  1040. on mouseUp shiftKey
  1041.   groupThree shiftKey
  1042. end mouseUp
  1043.  
  1044.  
  1045.  
  1046. -- part 45 (button)
  1047. -- low flags: 00
  1048. -- high flags: 0000
  1049. -- rect: left=409 top=110 right=125 bottom=424
  1050. -- title width / last selected line: 0
  1051. -- icon id / first selected line: 0 / 0
  1052. -- text alignment: 1
  1053. -- font id: 3
  1054. -- text size: 12
  1055. -- style flags: 0
  1056. -- line height: 16
  1057. -- part name: A
  1058. ----- HyperTalk script -----
  1059. on mouseUp shiftKey
  1060.   groupThree shiftKey
  1061. end mouseUp
  1062.  
  1063.  
  1064.  
  1065. -- part 46 (button)
  1066. -- low flags: 00
  1067. -- high flags: 0000
  1068. -- rect: left=425 top=110 right=125 bottom=440
  1069. -- title width / last selected line: 0
  1070. -- icon id / first selected line: 0 / 0
  1071. -- text alignment: 1
  1072. -- font id: 3
  1073. -- text size: 12
  1074. -- style flags: 0
  1075. -- line height: 16
  1076. -- part name: A
  1077. ----- HyperTalk script -----
  1078. on mouseUp shiftKey
  1079.   groupThree shiftKey
  1080. end mouseUp
  1081.  
  1082.  
  1083.  
  1084. -- part 47 (button)
  1085. -- low flags: 00
  1086. -- high flags: 0000
  1087. -- rect: left=441 top=110 right=125 bottom=456
  1088. -- title width / last selected line: 0
  1089. -- icon id / first selected line: 0 / 0
  1090. -- text alignment: 1
  1091. -- font id: 3
  1092. -- text size: 12
  1093. -- style flags: 0
  1094. -- line height: 16
  1095. -- part name: 
  1096. ----- HyperTalk script -----
  1097. on mouseUp shiftKey
  1098.   groupThree shiftKey
  1099. end mouseUp
  1100.  
  1101.  
  1102.  
  1103. -- part 48 (button)
  1104. -- low flags: 00
  1105. -- high flags: 0000
  1106. -- rect: left=457 top=110 right=125 bottom=472
  1107. -- title width / last selected line: 0
  1108. -- icon id / first selected line: 0 / 0
  1109. -- text alignment: 1
  1110. -- font id: 3
  1111. -- text size: 12
  1112. -- style flags: 0
  1113. -- line height: 16
  1114. -- part name: L
  1115. ----- HyperTalk script -----
  1116. on mouseUp shiftKey
  1117.   groupThree shiftKey
  1118. end mouseUp
  1119.  
  1120.  
  1121.  
  1122. -- part 49 (button)
  1123. -- low flags: 00
  1124. -- high flags: 0000
  1125. -- rect: left=473 top=110 right=125 bottom=488
  1126. -- title width / last selected line: 0
  1127. -- icon id / first selected line: 0 / 0
  1128. -- text alignment: 1
  1129. -- font id: 3
  1130. -- text size: 12
  1131. -- style flags: 0
  1132. -- line height: 16
  1133. -- part name: 
  1134. ----- HyperTalk script -----
  1135. on mouseUp shiftKey
  1136.   groupThree shiftKey
  1137. end mouseUp
  1138.  
  1139.  
  1140.  
  1141. -- part 50 (button)
  1142. -- low flags: 00
  1143. -- high flags: 0000
  1144. -- rect: left=361 top=126 right=141 bottom=376
  1145. -- title width / last selected line: 0
  1146. -- icon id / first selected line: 0 / 0
  1147. -- text alignment: 1
  1148. -- font id: 3
  1149. -- text size: 12
  1150. -- style flags: 0
  1151. -- line height: 16
  1152. -- part name: T
  1153. ----- HyperTalk script -----
  1154. on mouseUp shiftKey
  1155.   groupThree shiftKey
  1156. end mouseUp
  1157.  
  1158.  
  1159.  
  1160. -- part 51 (button)
  1161. -- low flags: 00
  1162. -- high flags: 0000
  1163. -- rect: left=377 top=126 right=141 bottom=392
  1164. -- title width / last selected line: 0
  1165. -- icon id / first selected line: 0 / 0
  1166. -- text alignment: 1
  1167. -- font id: 3
  1168. -- text size: 12
  1169. -- style flags: 0
  1170. -- line height: 16
  1171. -- part name: 
  1172. ----- HyperTalk script -----
  1173. on mouseUp shiftKey
  1174.   groupThree shiftKey
  1175. end mouseUp
  1176.  
  1177.  
  1178.  
  1179. -- part 52 (button)
  1180. -- low flags: 00
  1181. -- high flags: 0000
  1182. -- rect: left=393 top=126 right=141 bottom=408
  1183. -- title width / last selected line: 0
  1184. -- icon id / first selected line: 0 / 0
  1185. -- text alignment: 1
  1186. -- font id: 3
  1187. -- text size: 12
  1188. -- style flags: 0
  1189. -- line height: 16
  1190. -- part name: D
  1191. ----- HyperTalk script -----
  1192. on mouseUp shiftKey
  1193.   groupThree shiftKey
  1194. end mouseUp
  1195.  
  1196.  
  1197.  
  1198. -- part 53 (button)
  1199. -- low flags: 00
  1200. -- high flags: 0000
  1201. -- rect: left=409 top=126 right=141 bottom=424
  1202. -- title width / last selected line: 0
  1203. -- icon id / first selected line: 0 / 0
  1204. -- text alignment: 1
  1205. -- font id: 3
  1206. -- text size: 12
  1207. -- style flags: 0
  1208. -- line height: 16
  1209. -- part name: A
  1210. ----- HyperTalk script -----
  1211. on mouseUp shiftKey
  1212.   groupThree shiftKey
  1213. end mouseUp
  1214.  
  1215.  
  1216.  
  1217. -- part 54 (button)
  1218. -- low flags: 00
  1219. -- high flags: 0000
  1220. -- rect: left=425 top=126 right=141 bottom=440
  1221. -- title width / last selected line: 0
  1222. -- icon id / first selected line: 0 / 0
  1223. -- text alignment: 1
  1224. -- font id: 3
  1225. -- text size: 12
  1226. -- style flags: 0
  1227. -- line height: 16
  1228. -- part name: 
  1229. ----- HyperTalk script -----
  1230. on mouseUp shiftKey
  1231.   groupThree shiftKey
  1232. end mouseUp
  1233.  
  1234.  
  1235.  
  1236. -- part 55 (button)
  1237. -- low flags: 00
  1238. -- high flags: 0000
  1239. -- rect: left=441 top=126 right=141 bottom=456
  1240. -- title width / last selected line: 0
  1241. -- icon id / first selected line: 0 / 0
  1242. -- text alignment: 1
  1243. -- font id: 3
  1244. -- text size: 12
  1245. -- style flags: 0
  1246. -- line height: 16
  1247. -- part name: 
  1248. ----- HyperTalk script -----
  1249. on mouseUp shiftKey
  1250.   groupThree shiftKey
  1251. end mouseUp
  1252.  
  1253.  
  1254.  
  1255. -- part 56 (button)
  1256. -- low flags: 00
  1257. -- high flags: 0000
  1258. -- rect: left=457 top=126 right=141 bottom=472
  1259. -- title width / last selected line: 0
  1260. -- icon id / first selected line: 0 / 0
  1261. -- text alignment: 1
  1262. -- font id: 3
  1263. -- text size: 12
  1264. -- style flags: 0
  1265. -- line height: 16
  1266. -- part name: 
  1267. ----- HyperTalk script -----
  1268. on mouseUp shiftKey
  1269.   groupThree shiftKey
  1270. end mouseUp
  1271.  
  1272.  
  1273.  
  1274. -- part 57 (button)
  1275. -- low flags: 00
  1276. -- high flags: 0000
  1277. -- rect: left=473 top=126 right=141 bottom=488
  1278. -- title width / last selected line: 0
  1279. -- icon id / first selected line: 0 / 0
  1280. -- text alignment: 1
  1281. -- font id: 3
  1282. -- text size: 12
  1283. -- style flags: 0
  1284. -- line height: 16
  1285. -- part name: 
  1286. ----- HyperTalk script -----
  1287. on mouseUp shiftKey
  1288.   groupThree shiftKey
  1289. end mouseUp
  1290.  
  1291.  
  1292.  
  1293. -- part 58 (button)
  1294. -- low flags: 00
  1295. -- high flags: 0000
  1296. -- rect: left=361 top=142 right=157 bottom=376
  1297. -- title width / last selected line: 0
  1298. -- icon id / first selected line: 0 / 0
  1299. -- text alignment: 1
  1300. -- font id: 3
  1301. -- text size: 12
  1302. -- style flags: 0
  1303. -- line height: 16
  1304. -- part name: 
  1305. ----- HyperTalk script -----
  1306. on mouseUp shiftKey
  1307.   groupThree shiftKey
  1308. end mouseUp
  1309.  
  1310.  
  1311.  
  1312. -- part 59 (button)
  1313. -- low flags: 00
  1314. -- high flags: 0000
  1315. -- rect: left=377 top=142 right=157 bottom=392
  1316. -- title width / last selected line: 0
  1317. -- icon id / first selected line: 0 / 0
  1318. -- text alignment: 1
  1319. -- font id: 3
  1320. -- text size: 12
  1321. -- style flags: 0
  1322. -- line height: 16
  1323. -- part name: 
  1324. ----- HyperTalk script -----
  1325. on mouseUp shiftKey
  1326.   groupThree shiftKey
  1327. end mouseUp
  1328.  
  1329.  
  1330.  
  1331. -- part 60 (button)
  1332. -- low flags: 00
  1333. -- high flags: 0000
  1334. -- rect: left=393 top=142 right=157 bottom=408
  1335. -- title width / last selected line: 0
  1336. -- icon id / first selected line: 0 / 0
  1337. -- text alignment: 1
  1338. -- font id: 3
  1339. -- text size: 12
  1340. -- style flags: 0
  1341. -- line height: 16
  1342. -- part name: F
  1343. ----- HyperTalk script -----
  1344. on mouseUp shiftKey
  1345.   groupThree shiftKey
  1346. end mouseUp
  1347.  
  1348.  
  1349.  
  1350. -- part 61 (button)
  1351. -- low flags: 00
  1352. -- high flags: 0000
  1353. -- rect: left=409 top=142 right=157 bottom=424
  1354. -- title width / last selected line: 0
  1355. -- icon id / first selected line: 0 / 0
  1356. -- text alignment: 1
  1357. -- font id: 3
  1358. -- text size: 12
  1359. -- style flags: 0
  1360. -- line height: 16
  1361. -- part name: A
  1362. ----- HyperTalk script -----
  1363. on mouseUp shiftKey
  1364.   groupThree shiftKey
  1365. end mouseUp
  1366.  
  1367.  
  1368.  
  1369. -- part 62 (button)
  1370. -- low flags: 00
  1371. -- high flags: 0000
  1372. -- rect: left=425 top=142 right=157 bottom=440
  1373. -- title width / last selected line: 0
  1374. -- icon id / first selected line: 0 / 0
  1375. -- text alignment: 1
  1376. -- font id: 3
  1377. -- text size: 12
  1378. -- style flags: 0
  1379. -- line height: 16
  1380. -- part name: A
  1381. ----- HyperTalk script -----
  1382. on mouseUp shiftKey
  1383.   groupThree shiftKey
  1384. end mouseUp
  1385.  
  1386.  
  1387.  
  1388. -- part 63 (button)
  1389. -- low flags: 00
  1390. -- high flags: 0000
  1391. -- rect: left=441 top=142 right=157 bottom=456
  1392. -- title width / last selected line: 0
  1393. -- icon id / first selected line: 0 / 0
  1394. -- text alignment: 1
  1395. -- font id: 3
  1396. -- text size: 12
  1397. -- style flags: 0
  1398. -- line height: 16
  1399. -- part name: 
  1400. ----- HyperTalk script -----
  1401. on mouseUp shiftKey
  1402.   groupThree shiftKey
  1403. end mouseUp
  1404.  
  1405.  
  1406.  
  1407. -- part 64 (button)
  1408. -- low flags: 00
  1409. -- high flags: 0000
  1410. -- rect: left=457 top=142 right=157 bottom=472
  1411. -- title width / last selected line: 0
  1412. -- icon id / first selected line: 0 / 0
  1413. -- text alignment: 1
  1414. -- font id: 3
  1415. -- text size: 12
  1416. -- style flags: 0
  1417. -- line height: 16
  1418. -- part name: T
  1419. ----- HyperTalk script -----
  1420. on mouseUp shiftKey
  1421.   groupThree shiftKey
  1422. end mouseUp
  1423.  
  1424.  
  1425.  
  1426. -- part 65 (button)
  1427. -- low flags: 00
  1428. -- high flags: 0000
  1429. -- rect: left=473 top=142 right=157 bottom=488
  1430. -- title width / last selected line: 0
  1431. -- icon id / first selected line: 0 / 0
  1432. -- text alignment: 1
  1433. -- font id: 3
  1434. -- text size: 12
  1435. -- style flags: 0
  1436. -- line height: 16
  1437. -- part name: 
  1438. ----- HyperTalk script -----
  1439. on mouseUp shiftKey
  1440.   groupThree shiftKey
  1441. end mouseUp
  1442.  
  1443.  
  1444.  
  1445. -- part 66 (button)
  1446. -- low flags: 00
  1447. -- high flags: 0000
  1448. -- rect: left=361 top=158 right=173 bottom=376
  1449. -- title width / last selected line: 0
  1450. -- icon id / first selected line: 0 / 0
  1451. -- text alignment: 1
  1452. -- font id: 3
  1453. -- text size: 12
  1454. -- style flags: 0
  1455. -- line height: 16
  1456. -- part name: 
  1457. ----- HyperTalk script -----
  1458. on mouseUp shiftKey
  1459.   groupThree shiftKey
  1460. end mouseUp
  1461.  
  1462.  
  1463.  
  1464. -- part 67 (button)
  1465. -- low flags: 00
  1466. -- high flags: 0000
  1467. -- rect: left=377 top=158 right=173 bottom=392
  1468. -- title width / last selected line: 0
  1469. -- icon id / first selected line: 0 / 0
  1470. -- text alignment: 1
  1471. -- font id: 3
  1472. -- text size: 12
  1473. -- style flags: 0
  1474. -- line height: 16
  1475. -- part name: 
  1476. ----- HyperTalk script -----
  1477. on mouseUp shiftKey
  1478.   groupThree shiftKey
  1479. end mouseUp
  1480.  
  1481.  
  1482.  
  1483. -- part 68 (button)
  1484. -- low flags: 00
  1485. -- high flags: 0000
  1486. -- rect: left=393 top=158 right=173 bottom=408
  1487. -- title width / last selected line: 0
  1488. -- icon id / first selected line: 0 / 0
  1489. -- text alignment: 1
  1490. -- font id: 3
  1491. -- text size: 12
  1492. -- style flags: 0
  1493. -- line height: 16
  1494. -- part name: +
  1495. ----- HyperTalk script -----
  1496. on mouseUp shiftKey
  1497.   groupThree shiftKey
  1498. end mouseUp
  1499.  
  1500.  
  1501.  
  1502. -- part 69 (button)
  1503. -- low flags: 00
  1504. -- high flags: 0000
  1505. -- rect: left=409 top=158 right=173 bottom=424
  1506. -- title width / last selected line: 0
  1507. -- icon id / first selected line: 0 / 0
  1508. -- text alignment: 1
  1509. -- font id: 3
  1510. -- text size: 12
  1511. -- style flags: 0
  1512. -- line height: 16
  1513. -- part name: A
  1514. ----- HyperTalk script -----
  1515. on mouseUp shiftKey
  1516.   groupThree shiftKey
  1517. end mouseUp
  1518.  
  1519.  
  1520.  
  1521. -- part 70 (button)
  1522. -- low flags: 00
  1523. -- high flags: 0000
  1524. -- rect: left=425 top=158 right=173 bottom=440
  1525. -- title width / last selected line: 0
  1526. -- icon id / first selected line: 0 / 0
  1527. -- text alignment: 1
  1528. -- font id: 3
  1529. -- text size: 12
  1530. -- style flags: 0
  1531. -- line height: 16
  1532. -- part name: A
  1533. ----- HyperTalk script -----
  1534. on mouseUp shiftKey
  1535.   groupThree shiftKey
  1536. end mouseUp
  1537.  
  1538.  
  1539.  
  1540. -- part 71 (button)
  1541. -- low flags: 00
  1542. -- high flags: 0000
  1543. -- rect: left=441 top=158 right=173 bottom=456
  1544. -- title width / last selected line: 0
  1545. -- icon id / first selected line: 0 / 0
  1546. -- text alignment: 1
  1547. -- font id: 3
  1548. -- text size: 12
  1549. -- style flags: 0
  1550. -- line height: 16
  1551. -- part name: F
  1552. ----- HyperTalk script -----
  1553. on mouseUp shiftKey
  1554.   groupThree shiftKey
  1555. end mouseUp
  1556.  
  1557.  
  1558.  
  1559. -- part 72 (button)
  1560. -- low flags: 00
  1561. -- high flags: 0000
  1562. -- rect: left=457 top=158 right=173 bottom=472
  1563. -- title width / last selected line: 0
  1564. -- icon id / first selected line: 0 / 0
  1565. -- text alignment: 1
  1566. -- font id: 3
  1567. -- text size: 12
  1568. -- style flags: 0
  1569. -- line height: 16
  1570. -- part name: T
  1571. ----- HyperTalk script -----
  1572. on mouseUp shiftKey
  1573.   groupThree shiftKey
  1574. end mouseUp
  1575.  
  1576.  
  1577.  
  1578. -- part 73 (button)
  1579. -- low flags: 00
  1580. -- high flags: 0000
  1581. -- rect: left=473 top=158 right=173 bottom=488
  1582. -- title width / last selected line: 0
  1583. -- icon id / first selected line: 0 / 0
  1584. -- text alignment: 1
  1585. -- font id: 3
  1586. -- text size: 12
  1587. -- style flags: 0
  1588. -- line height: 16
  1589. -- part name: 
  1590. ----- HyperTalk script -----
  1591. on mouseUp shiftKey
  1592.   groupThree shiftKey
  1593. end mouseUp
  1594.  
  1595.  
  1596.  
  1597. -- part 74 (button)
  1598. -- low flags: 00
  1599. -- high flags: 0000
  1600. -- rect: left=361 top=174 right=189 bottom=376
  1601. -- title width / last selected line: 0
  1602. -- icon id / first selected line: 0 / 0
  1603. -- text alignment: 1
  1604. -- font id: 3
  1605. -- text size: 12
  1606. -- style flags: 0
  1607. -- line height: 16
  1608. -- part name: 
  1609. ----- HyperTalk script -----
  1610. on mouseUp shiftKey
  1611.   groupThree shiftKey
  1612. end mouseUp
  1613.  
  1614.  
  1615.  
  1616. -- part 75 (button)
  1617. -- low flags: 00
  1618. -- high flags: 0000
  1619. -- rect: left=377 top=174 right=189 bottom=392
  1620. -- title width / last selected line: 0
  1621. -- icon id / first selected line: 0 / 0
  1622. -- text alignment: 1
  1623. -- font id: 3
  1624. -- text size: 12
  1625. -- style flags: 0
  1626. -- line height: 16
  1627. -- part name: 
  1628. ----- HyperTalk script -----
  1629. on mouseUp shiftKey
  1630.   groupThree shiftKey
  1631. end mouseUp
  1632.  
  1633.  
  1634.  
  1635. -- part 76 (button)
  1636. -- low flags: 00
  1637. -- high flags: 0000
  1638. -- rect: left=393 top=174 right=189 bottom=408
  1639. -- title width / last selected line: 0
  1640. -- icon id / first selected line: 0 / 0
  1641. -- text alignment: 1
  1642. -- font id: 3
  1643. -- text size: 12
  1644. -- style flags: 0
  1645. -- line height: 16
  1646. -- part name: 
  1647. ----- HyperTalk script -----
  1648. on mouseUp shiftKey
  1649.   groupThree shiftKey
  1650. end mouseUp
  1651.  
  1652.  
  1653.  
  1654. -- part 77 (button)
  1655. -- low flags: 00
  1656. -- high flags: 0000
  1657. -- rect: left=409 top=174 right=189 bottom=424
  1658. -- title width / last selected line: 0
  1659. -- icon id / first selected line: 0 / 0
  1660. -- text alignment: 1
  1661. -- font id: 3
  1662. -- text size: 12
  1663. -- style flags: 0
  1664. -- line height: 16
  1665. -- part name: A
  1666. ----- HyperTalk script -----
  1667. on mouseUp shiftKey
  1668.   groupThree shiftKey
  1669. end mouseUp
  1670.  
  1671.  
  1672.  
  1673. -- part 78 (button)
  1674. -- low flags: 00
  1675. -- high flags: 0000
  1676. -- rect: left=425 top=174 right=189 bottom=440
  1677. -- title width / last selected line: 0
  1678. -- icon id / first selected line: 0 / 0
  1679. -- text alignment: 1
  1680. -- font id: 3
  1681. -- text size: 12
  1682. -- style flags: 0
  1683. -- line height: 16
  1684. -- part name: D
  1685. ----- HyperTalk script -----
  1686. on mouseUp shiftKey
  1687.   groupThree shiftKey
  1688. end mouseUp
  1689.  
  1690.  
  1691.  
  1692. -- part 79 (button)
  1693. -- low flags: 00
  1694. -- high flags: 0000
  1695. -- rect: left=441 top=174 right=189 bottom=456
  1696. -- title width / last selected line: 0
  1697. -- icon id / first selected line: 0 / 0
  1698. -- text alignment: 1
  1699. -- font id: 3
  1700. -- text size: 12
  1701. -- style flags: 0
  1702. -- line height: 16
  1703. -- part name: F
  1704. ----- HyperTalk script -----
  1705. on mouseUp shiftKey
  1706.   groupThree shiftKey
  1707. end mouseUp
  1708.  
  1709.  
  1710.  
  1711. -- part 80 (button)
  1712. -- low flags: 00
  1713. -- high flags: 0000
  1714. -- rect: left=457 top=174 right=189 bottom=472
  1715. -- title width / last selected line: 0
  1716. -- icon id / first selected line: 0 / 0
  1717. -- text alignment: 1
  1718. -- font id: 3
  1719. -- text size: 12
  1720. -- style flags: 0
  1721. -- line height: 16
  1722. -- part name: L
  1723. ----- HyperTalk script -----
  1724. on mouseUp shiftKey
  1725.   groupThree shiftKey
  1726. end mouseUp
  1727.  
  1728.  
  1729.  
  1730. -- part 81 (button)
  1731. -- low flags: 00
  1732. -- high flags: 0000
  1733. -- rect: left=473 top=174 right=189 bottom=488
  1734. -- title width / last selected line: 0
  1735. -- icon id / first selected line: 0 / 0
  1736. -- text alignment: 1
  1737. -- font id: 3
  1738. -- text size: 12
  1739. -- style flags: 0
  1740. -- line height: 16
  1741. -- part name: 
  1742. ----- HyperTalk script -----
  1743. on mouseUp shiftKey
  1744.   groupThree shiftKey
  1745. end mouseUp
  1746.  
  1747.  
  1748.  
  1749. -- part 82 (button)
  1750. -- low flags: 00
  1751. -- high flags: 0000
  1752. -- rect: left=361 top=190 right=205 bottom=376
  1753. -- title width / last selected line: 0
  1754. -- icon id / first selected line: 0 / 0
  1755. -- text alignment: 1
  1756. -- font id: 3
  1757. -- text size: 12
  1758. -- style flags: 0
  1759. -- line height: 16
  1760. -- part name: 
  1761. ----- HyperTalk script -----
  1762. on mouseUp shiftKey
  1763.   groupThree shiftKey
  1764. end mouseUp
  1765.  
  1766.  
  1767.  
  1768. -- part 83 (button)
  1769. -- low flags: 00
  1770. -- high flags: 0000
  1771. -- rect: left=377 top=190 right=205 bottom=392
  1772. -- title width / last selected line: 0
  1773. -- icon id / first selected line: 0 / 0
  1774. -- text alignment: 1
  1775. -- font id: 3
  1776. -- text size: 12
  1777. -- style flags: 0
  1778. -- line height: 16
  1779. -- part name: X
  1780. ----- HyperTalk script -----
  1781. on mouseUp shiftKey
  1782.   groupThree shiftKey
  1783. end mouseUp
  1784.  
  1785.  
  1786.  
  1787. -- part 84 (button)
  1788. -- low flags: 00
  1789. -- high flags: 0000
  1790. -- rect: left=393 top=190 right=205 bottom=408
  1791. -- title width / last selected line: 0
  1792. -- icon id / first selected line: 0 / 0
  1793. -- text alignment: 1
  1794. -- font id: 3
  1795. -- text size: 12
  1796. -- style flags: 0
  1797. -- line height: 16
  1798. -- part name: 
  1799. ----- HyperTalk script -----
  1800. on mouseUp shiftKey
  1801.   groupThree shiftKey
  1802. end mouseUp
  1803.  
  1804.  
  1805.  
  1806. -- part 85 (button)
  1807. -- low flags: 00
  1808. -- high flags: 0000
  1809. -- rect: left=409 top=190 right=205 bottom=424
  1810. -- title width / last selected line: 0
  1811. -- icon id / first selected line: 0 / 0
  1812. -- text alignment: 1
  1813. -- font id: 3
  1814. -- text size: 12
  1815. -- style flags: 0
  1816. -- line height: 16
  1817. -- part name: A
  1818. ----- HyperTalk script -----
  1819. on mouseUp shiftKey
  1820.   groupThree shiftKey
  1821. end mouseUp
  1822.  
  1823.  
  1824.  
  1825. -- part 86 (button)
  1826. -- low flags: 00
  1827. -- high flags: 0000
  1828. -- rect: left=425 top=190 right=205 bottom=440
  1829. -- title width / last selected line: 0
  1830. -- icon id / first selected line: 0 / 0
  1831. -- text alignment: 1
  1832. -- font id: 3
  1833. -- text size: 12
  1834. -- style flags: 0
  1835. -- line height: 16
  1836. -- part name: 
  1837. ----- HyperTalk script -----
  1838. on mouseUp shiftKey
  1839.   groupThree shiftKey
  1840. end mouseUp
  1841.  
  1842.  
  1843.  
  1844. -- part 87 (button)
  1845. -- low flags: 00
  1846. -- high flags: 0000
  1847. -- rect: left=441 top=190 right=205 bottom=456
  1848. -- title width / last selected line: 0
  1849. -- icon id / first selected line: 0 / 0
  1850. -- text alignment: 1
  1851. -- font id: 3
  1852. -- text size: 12
  1853. -- style flags: 0
  1854. -- line height: 16
  1855. -- part name: 
  1856. ----- HyperTalk script -----
  1857. on mouseUp shiftKey
  1858.   groupThree shiftKey
  1859. end mouseUp
  1860.  
  1861.  
  1862.  
  1863. -- part 88 (button)
  1864. -- low flags: 00
  1865. -- high flags: 0000
  1866. -- rect: left=457 top=190 right=205 bottom=472
  1867. -- title width / last selected line: 0
  1868. -- icon id / first selected line: 0 / 0
  1869. -- text alignment: 1
  1870. -- font id: 3
  1871. -- text size: 12
  1872. -- style flags: 0
  1873. -- line height: 16
  1874. -- part name: 
  1875. ----- HyperTalk script -----
  1876. on mouseUp shiftKey
  1877.   groupThree shiftKey
  1878. end mouseUp
  1879.  
  1880.  
  1881.  
  1882. -- part 89 (button)
  1883. -- low flags: 00
  1884. -- high flags: 0000
  1885. -- rect: left=473 top=190 right=205 bottom=488
  1886. -- title width / last selected line: 0
  1887. -- icon id / first selected line: 0 / 0
  1888. -- text alignment: 1
  1889. -- font id: 3
  1890. -- text size: 12
  1891. -- style flags: 0
  1892. -- line height: 16
  1893. -- part name: 
  1894. ----- HyperTalk script -----
  1895. on mouseUp shiftKey
  1896.   groupThree shiftKey
  1897. end mouseUp
  1898.  
  1899.  
  1900.  
  1901. -- part 90 (button)
  1902. -- low flags: 00
  1903. -- high flags: 0000
  1904. -- rect: left=361 top=206 right=221 bottom=376
  1905. -- title width / last selected line: 0
  1906. -- icon id / first selected line: 0 / 0
  1907. -- text alignment: 1
  1908. -- font id: 3
  1909. -- text size: 12
  1910. -- style flags: 0
  1911. -- line height: 16
  1912. -- part name: 
  1913. ----- HyperTalk script -----
  1914. on mouseUp shiftKey
  1915.   groupThree shiftKey
  1916. end mouseUp
  1917.  
  1918.  
  1919.  
  1920. -- part 91 (button)
  1921. -- low flags: 00
  1922. -- high flags: 0000
  1923. -- rect: left=377 top=206 right=221 bottom=392
  1924. -- title width / last selected line: 0
  1925. -- icon id / first selected line: 0 / 0
  1926. -- text alignment: 1
  1927. -- font id: 3
  1928. -- text size: 12
  1929. -- style flags: 0
  1930. -- line height: 16
  1931. -- part name: T
  1932. ----- HyperTalk script -----
  1933. on mouseUp shiftKey
  1934.   groupThree shiftKey
  1935. end mouseUp
  1936.  
  1937.  
  1938.  
  1939. -- part 92 (button)
  1940. -- low flags: 00
  1941. -- high flags: 0000
  1942. -- rect: left=393 top=206 right=221 bottom=408
  1943. -- title width / last selected line: 0
  1944. -- icon id / first selected line: 0 / 0
  1945. -- text alignment: 1
  1946. -- font id: 3
  1947. -- text size: 12
  1948. -- style flags: 0
  1949. -- line height: 16
  1950. -- part name: D
  1951. ----- HyperTalk script -----
  1952. on mouseUp shiftKey
  1953.   groupThree shiftKey
  1954. end mouseUp
  1955.  
  1956.  
  1957.  
  1958. -- part 93 (button)
  1959. -- low flags: 00
  1960. -- high flags: 0000
  1961. -- rect: left=409 top=206 right=221 bottom=424
  1962. -- title width / last selected line: 0
  1963. -- icon id / first selected line: 0 / 0
  1964. -- text alignment: 1
  1965. -- font id: 3
  1966. -- text size: 12
  1967. -- style flags: 0
  1968. -- line height: 16
  1969. -- part name: A
  1970. ----- HyperTalk script -----
  1971. on mouseUp shiftKey
  1972.   groupThree shiftKey
  1973. end mouseUp
  1974.  
  1975.  
  1976.  
  1977. -- part 94 (button)
  1978. -- low flags: 00
  1979. -- high flags: 0000
  1980. -- rect: left=425 top=206 right=221 bottom=440
  1981. -- title width / last selected line: 0
  1982. -- icon id / first selected line: 0 / 0
  1983. -- text alignment: 1
  1984. -- font id: 3
  1985. -- text size: 12
  1986. -- style flags: 0
  1987. -- line height: 16
  1988. -- part name: A
  1989. ----- HyperTalk script -----
  1990. on mouseUp shiftKey
  1991.   groupThree shiftKey
  1992. end mouseUp
  1993.  
  1994.  
  1995.  
  1996. -- part 95 (button)
  1997. -- low flags: 00
  1998. -- high flags: 0000
  1999. -- rect: left=441 top=206 right=221 bottom=456
  2000. -- title width / last selected line: 0
  2001. -- icon id / first selected line: 0 / 0
  2002. -- text alignment: 1
  2003. -- font id: 3
  2004. -- text size: 12
  2005. -- style flags: 0
  2006. -- line height: 16
  2007. -- part name: 
  2008. ----- HyperTalk script -----
  2009. on mouseUp shiftKey
  2010.   groupThree shiftKey
  2011. end mouseUp
  2012.  
  2013.  
  2014.  
  2015. -- part 96 (button)
  2016. -- low flags: 00
  2017. -- high flags: 0000
  2018. -- rect: left=457 top=206 right=221 bottom=472
  2019. -- title width / last selected line: 0
  2020. -- icon id / first selected line: 0 / 0
  2021. -- text alignment: 1
  2022. -- font id: 3
  2023. -- text size: 12
  2024. -- style flags: 0
  2025. -- line height: 16
  2026. -- part name: L
  2027. ----- HyperTalk script -----
  2028. on mouseUp shiftKey
  2029.   groupThree shiftKey
  2030. end mouseUp
  2031.  
  2032.  
  2033.  
  2034. -- part 97 (button)
  2035. -- low flags: 00
  2036. -- high flags: 0000
  2037. -- rect: left=473 top=206 right=221 bottom=488
  2038. -- title width / last selected line: 0
  2039. -- icon id / first selected line: 0 / 0
  2040. -- text alignment: 1
  2041. -- font id: 3
  2042. -- text size: 12
  2043. -- style flags: 0
  2044. -- line height: 16
  2045. -- part name: 
  2046. ----- HyperTalk script -----
  2047. on mouseUp shiftKey
  2048.   groupThree shiftKey
  2049. end mouseUp
  2050.  
  2051.  
  2052.  
  2053. -- part 98 (button)
  2054. -- low flags: 00
  2055. -- high flags: 0000
  2056. -- rect: left=361 top=222 right=237 bottom=376
  2057. -- title width / last selected line: 0
  2058. -- icon id / first selected line: 0 / 0
  2059. -- text alignment: 1
  2060. -- font id: 3
  2061. -- text size: 12
  2062. -- style flags: 0
  2063. -- line height: 16
  2064. -- part name: 
  2065. ----- HyperTalk script -----
  2066. on mouseUp shiftKey
  2067.   groupThree shiftKey
  2068. end mouseUp
  2069.  
  2070.  
  2071.  
  2072. -- part 99 (button)
  2073. -- low flags: 00
  2074. -- high flags: 0000
  2075. -- rect: left=377 top=222 right=237 bottom=392
  2076. -- title width / last selected line: 0
  2077. -- icon id / first selected line: 0 / 0
  2078. -- text alignment: 1
  2079. -- font id: 3
  2080. -- text size: 12
  2081. -- style flags: 0
  2082. -- line height: 16
  2083. -- part name: T
  2084. ----- HyperTalk script -----
  2085. on mouseUp shiftKey
  2086.   groupThree shiftKey
  2087. end mouseUp
  2088.  
  2089.  
  2090.  
  2091. -- part 100 (button)
  2092. -- low flags: 00
  2093. -- high flags: 0000
  2094. -- rect: left=393 top=222 right=237 bottom=408
  2095. -- title width / last selected line: 0
  2096. -- icon id / first selected line: 0 / 0
  2097. -- text alignment: 1
  2098. -- font id: 3
  2099. -- text size: 12
  2100. -- style flags: 0
  2101. -- line height: 16
  2102. -- part name: A
  2103. ----- HyperTalk script -----
  2104. on mouseUp shiftKey
  2105.   groupThree shiftKey
  2106. end mouseUp
  2107.  
  2108.  
  2109.  
  2110. -- part 101 (button)
  2111. -- low flags: 00
  2112. -- high flags: 0000
  2113. -- rect: left=409 top=222 right=237 bottom=424
  2114. -- title width / last selected line: 0
  2115. -- icon id / first selected line: 0 / 0
  2116. -- text alignment: 1
  2117. -- font id: 3
  2118. -- text size: 12
  2119. -- style flags: 0
  2120. -- line height: 16
  2121. -- part name: A
  2122. ----- HyperTalk script -----
  2123. on mouseUp shiftKey
  2124.   groupThree shiftKey
  2125. end mouseUp
  2126.  
  2127.  
  2128.  
  2129. -- part 102 (button)
  2130. -- low flags: 00
  2131. -- high flags: 0000
  2132. -- rect: left=425 top=222 right=237 bottom=440
  2133. -- title width / last selected line: 0
  2134. -- icon id / first selected line: 0 / 0
  2135. -- text alignment: 1
  2136. -- font id: 3
  2137. -- text size: 12
  2138. -- style flags: 0
  2139. -- line height: 16
  2140. -- part name: 
  2141. ----- HyperTalk script -----
  2142. on mouseUp shiftKey
  2143.   groupThree shiftKey
  2144. end mouseUp
  2145.  
  2146.  
  2147.  
  2148. -- part 103 (button)
  2149. -- low flags: 00
  2150. -- high flags: 0000
  2151. -- rect: left=441 top=222 right=237 bottom=456
  2152. -- title width / last selected line: 0
  2153. -- icon id / first selected line: 0 / 0
  2154. -- text alignment: 1
  2155. -- font id: 3
  2156. -- text size: 12
  2157. -- style flags: 0
  2158. -- line height: 16
  2159. -- part name: F
  2160. ----- HyperTalk script -----
  2161. on mouseUp shiftKey
  2162.   groupThree shiftKey
  2163. end mouseUp
  2164.  
  2165.  
  2166.  
  2167. -- part 104 (button)
  2168. -- low flags: 00
  2169. -- high flags: 0000
  2170. -- rect: left=457 top=222 right=237 bottom=472
  2171. -- title width / last selected line: 0
  2172. -- icon id / first selected line: 0 / 0
  2173. -- text alignment: 1
  2174. -- font id: 3
  2175. -- text size: 12
  2176. -- style flags: 0
  2177. -- line height: 16
  2178. -- part name: 
  2179. ----- HyperTalk script -----
  2180. on mouseUp shiftKey
  2181.   groupThree shiftKey
  2182. end mouseUp
  2183.  
  2184.  
  2185.  
  2186. -- part 105 (button)
  2187. -- low flags: 00
  2188. -- high flags: 0000
  2189. -- rect: left=473 top=222 right=237 bottom=488
  2190. -- title width / last selected line: 0
  2191. -- icon id / first selected line: 0 / 0
  2192. -- text alignment: 1
  2193. -- font id: 3
  2194. -- text size: 12
  2195. -- style flags: 0
  2196. -- line height: 16
  2197. -- part name: 
  2198. ----- HyperTalk script -----
  2199. on mouseUp shiftKey
  2200.   groupThree shiftKey
  2201. end mouseUp
  2202.  
  2203.  
  2204.  
  2205. -- part 106 (button)
  2206. -- low flags: 00
  2207. -- high flags: 0000
  2208. -- rect: left=361 top=238 right=253 bottom=376
  2209. -- title width / last selected line: 0
  2210. -- icon id / first selected line: 0 / 0
  2211. -- text alignment: 1
  2212. -- font id: 3
  2213. -- text size: 12
  2214. -- style flags: 0
  2215. -- line height: 16
  2216. -- part name: 
  2217. ----- HyperTalk script -----
  2218. on mouseUp shiftKey
  2219.   groupThree shiftKey
  2220. end mouseUp
  2221.  
  2222.  
  2223.  
  2224. -- part 107 (button)
  2225. -- low flags: 00
  2226. -- high flags: 0000
  2227. -- rect: left=377 top=238 right=253 bottom=392
  2228. -- title width / last selected line: 0
  2229. -- icon id / first selected line: 0 / 0
  2230. -- text alignment: 1
  2231. -- font id: 3
  2232. -- text size: 12
  2233. -- style flags: 0
  2234. -- line height: 16
  2235. -- part name: 
  2236. ----- HyperTalk script -----
  2237. on mouseUp shiftKey
  2238.   groupThree shiftKey
  2239. end mouseUp
  2240.  
  2241.  
  2242.  
  2243. -- part 108 (button)
  2244. -- low flags: 00
  2245. -- high flags: 0000
  2246. -- rect: left=393 top=238 right=253 bottom=408
  2247. -- title width / last selected line: 0
  2248. -- icon id / first selected line: 0 / 0
  2249. -- text alignment: 1
  2250. -- font id: 3
  2251. -- text size: 12
  2252. -- style flags: 0
  2253. -- line height: 16
  2254. -- part name: F
  2255. ----- HyperTalk script -----
  2256. on mouseUp shiftKey
  2257.   groupThree shiftKey
  2258. end mouseUp
  2259.  
  2260.  
  2261.  
  2262. -- part 109 (button)
  2263. -- low flags: 00
  2264. -- high flags: 0000
  2265. -- rect: left=409 top=238 right=253 bottom=424
  2266. -- title width / last selected line: 0
  2267. -- icon id / first selected line: 0 / 0
  2268. -- text alignment: 1
  2269. -- font id: 3
  2270. -- text size: 12
  2271. -- style flags: 0
  2272. -- line height: 16
  2273. -- part name: L
  2274. ----- HyperTalk script -----
  2275. on mouseUp shiftKey
  2276.   groupThree shiftKey
  2277. end mouseUp
  2278.  
  2279.  
  2280.  
  2281. -- part 110 (button)
  2282. -- low flags: 00
  2283. -- high flags: 0000
  2284. -- rect: left=425 top=238 right=253 bottom=440
  2285. -- title width / last selected line: 0
  2286. -- icon id / first selected line: 0 / 0
  2287. -- text alignment: 1
  2288. -- font id: 3
  2289. -- text size: 12
  2290. -- style flags: 0
  2291. -- line height: 16
  2292. -- part name: 
  2293. ----- HyperTalk script -----
  2294. on mouseUp shiftKey
  2295.   groupThree shiftKey
  2296. end mouseUp
  2297.  
  2298.  
  2299.  
  2300. -- part 111 (button)
  2301. -- low flags: 00
  2302. -- high flags: 0000
  2303. -- rect: left=441 top=238 right=253 bottom=456
  2304. -- title width / last selected line: 0
  2305. -- icon id / first selected line: 0 / 0
  2306. -- text alignment: 1
  2307. -- font id: 3
  2308. -- text size: 12
  2309. -- style flags: 0
  2310. -- line height: 16
  2311. -- part name: 
  2312. ----- HyperTalk script -----
  2313. on mouseUp shiftKey
  2314.   groupThree shiftKey
  2315. end mouseUp
  2316.  
  2317.  
  2318.  
  2319. -- part 112 (button)
  2320. -- low flags: 00
  2321. -- high flags: 0000
  2322. -- rect: left=457 top=238 right=253 bottom=472
  2323. -- title width / last selected line: 0
  2324. -- icon id / first selected line: 0 / 0
  2325. -- text alignment: 1
  2326. -- font id: 3
  2327. -- text size: 12
  2328. -- style flags: 0
  2329. -- line height: 16
  2330. -- part name: 
  2331. ----- HyperTalk script -----
  2332. on mouseUp shiftKey
  2333.   groupThree shiftKey
  2334. end mouseUp
  2335.  
  2336.  
  2337.  
  2338. -- part 113 (button)
  2339. -- low flags: 00
  2340. -- high flags: 0000
  2341. -- rect: left=473 top=238 right=253 bottom=488
  2342. -- title width / last selected line: 0
  2343. -- icon id / first selected line: 0 / 0
  2344. -- text alignment: 1
  2345. -- font id: 3
  2346. -- text size: 12
  2347. -- style flags: 0
  2348. -- line height: 16
  2349. -- part name: 
  2350. ----- HyperTalk script -----
  2351. on mouseUp shiftKey
  2352.   groupThree shiftKey
  2353. end mouseUp
  2354.  
  2355.